home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / BOS5.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  118 lines

  1. name Bridgeport Boss 5
  2.  
  3. : >4
  4. N >4
  5. G >2
  6. X ->3.>3
  7. Y ->3.>3
  8. Z ->3.>3
  9. A >3.>4 Z
  10. I ->3.>3
  11. J ->3.>3
  12. Q ->3.>3
  13. R ->3.>3
  14. P ->3.>3
  15. F >31
  16. H >4
  17. D >2
  18. T >4
  19. M >2
  20. S >4
  21.  
  22. ModalLetters F Z                      # List of letters that are modal    
  23.  
  24. ModalGs 0 1 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  25.  
  26. Sequence#s N 1 5 15                   # Char, freq, incr & start          
  27. First#? Y                             # Y or N  'Output 1st sequence no.  
  28.  
  29. HCode X                               # X or X U  'Horizontal char.       
  30. VCode Y                               # Y or Y V  'Vertical char.         
  31. Dcode Z                               # Depth char.                       
  32. FeedCode F                            # Feed rate char.                   
  33.  
  34. Comment ( )                           # Begin End comment char.           
  35.  
  36. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  37. Coolant 8 9 7                         # On, Off & Mist m codes            
  38. DComp 41 42 40                        # Left, Right & Cancel m codes      
  39. LComp 43 49                           # On & Off codes                    
  40. Spaces? Y                             # Y or N  'Spaces between words     
  41.  
  42. CtrIncremental? N                     # Y or N  'Inc or abs I & J         
  43. ByQuadrants? Y                        # Y or N  'Break arcs at quadrants  
  44. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  45. Work G                                # Work offset register              
  46. CtrCode I J                           # I J or R or I J K L               
  47. Helical? N
  48.  
  49. Feed G1                             # Linear move                       
  50. Rapid G0                            # Rapid positioning word            
  51. Cw G2                               # Circular move clockwise           
  52. Ccw G3                              # Circular move counter clockwise   
  53. Work G                                # Work offset register              
  54. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  55.  
  56. Drill                                 # Drilling canned/manual cycle      
  57. G81 X[H] Y[V] A[D] R[Vclear] F[FRate]
  58. end cancel
  59.  
  60. Peck                                  # Pecking canned/manual cycle       
  61. G83 X[H] Y[V] A[D] Q[VBite] R[Vclear] F[FRate]
  62. end cancel
  63.  
  64. Tap                                   # Tapping canned/manual cycle       
  65. G84 X[H] Y[V] A[D] R[Vclear] F[FRate]
  66. end cancel
  67.  
  68. LTap                                  # Left handed tapping cycle         
  69. G74 X[H] Y[V] A[D] R[Vclear] F[FRate]
  70. end cancel
  71.  
  72. Ream                                  # Reaming canned/manual cycle       
  73. G85 X[H] Y[V] A[D] R[Vclear] F[FRate]
  74. end cancel
  75.  
  76. Bore                                  # Boring canned/manual cycle        
  77. G86 X[H] Y[V] A[D] R[Vclear] F[FRate]
  78. end cancel
  79.  
  80. Back                                  # Back boring canned/manual cycle   
  81. G87 X[H] Y[V] A[D] R[Vclear] F[FRate]
  82. end cancel
  83.  
  84. Cancel                                # Cancel a canned/manual cycle      
  85. G80
  86. end
  87.  
  88. StartCode                             # Start of the program              
  89. End
  90.  
  91. 1stToolChange                         # First tool change                 
  92. G0 G90 X[ToolH] Y[ToolV] G75 T[Tool] M6
  93. X[H] Y[V]
  94. Z[VClear]
  95. End
  96.  
  97. Infeed                                # Enable cutter comp                
  98. G1 Z[D] F[Plunge]
  99. G[Side] X[H] Y[V] F[FRate]
  100. end
  101.  
  102. Outfeed                               # Disable cutter comp               
  103. G40 G1 X[H] Y[V]
  104. Z[D]
  105. end
  106.  
  107. ToolChange                            # Secondary tool changes            
  108. G0 G90 G75 X[ToolH] Y[ToolV] T[Tool] M6
  109. G0 X[H] Y[V]
  110. Z[VClear]
  111. End
  112.  
  113. EndCode                               # End of the program                
  114. Z[RPlane]
  115. M9
  116. G0 X[ToolH] Y[ToolV]
  117. M2
  118. End